home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / SecalDemo / Inc / exec / lists.inc < prev    next >
Encoding:
Text File  |  1997-06-11  |  215 b   |  17 lines

  1. include "inc/exec/nodes.inc";
  2.  
  3. struct List is
  4.   lh_Head:ulong;
  5.   lh_Tail:ulong;
  6.   lh_TailPred:ulong;
  7.   lh_Type:ubyte;
  8.   l_pad:ubyte;
  9. ;
  10.  
  11. struct MinList is
  12.   mlh_Head:ulong;
  13.   mlh_Tail:ulong;
  14.   mlh_TailPred:ulong;
  15. ;
  16.  
  17.